From b3dc391236de5054b3809e65b7b1b2fbd9aaa0f9 Mon Sep 17 00:00:00 2001 From: tsteven4 <13596209+tsteven4@users.noreply.github.com> Date: Sat, 9 Sep 2023 07:44:43 -0600 Subject: [PATCH] fix reserved-macro-identifier clang diagnostic --- googletakeout.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/googletakeout.h b/googletakeout.h index 51b9222f1..d1db57593 100644 --- a/googletakeout.h +++ b/googletakeout.h @@ -19,8 +19,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifndef _GOOGLETAKEOUT_H -#define _GOOGLETAKEOUT_H +#ifndef GOOGLETAKEOUT_H_INCLUDED_ +#define GOOGLETAKEOUT_H_INCLUDED_ #include // for QJsonObject #include // for QJsonValue @@ -125,4 +125,4 @@ private: QVector googletakeout_args; }; -#endif /* _GOOGLETAKEOUT_H */ +#endif /* GOOGLETAKEOUT_H_INCLUDED_ */ -- 2.30.2